d4654c0bebe0874e776587360893315fbf4359c6,src/net/java/sip/communicator/plugin/notificationconfiguration/NotificationConfigurationActivator.java,NotificationConfigurationActivator,getNotificationService,#,97

Before Change


     */
    public static NotificationService getNotificationService()
    {
        ServiceReference notificationReference =
            bundleContext.getServiceReference(NotificationService.class
                .getName());

        return (NotificationService) bundleContext
            .getService(notificationReference);
    }
}

After Change


    public static NotificationService getNotificationService()
    {
        return
            ServiceUtils.getService(bundleContext, NotificationService.class);
    }
}